home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 41 / Issue 41.iso / pc / PCSoftware / Netscape 6 Official Release / nim.xpi / bin / chrome / aim.jar / content / aim / SPConnectingOrgOverlay.xul < prev    next >
Encoding:
Extensible Markup Language  |  2000-09-14  |  1.2 KB  |  38 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!DOCTYPE window SYSTEM "chrome://aim/locale/SPConnectingOrgOverlay.dtd">
  4.  
  5. <overlay id="SidebarPanelConnectingOrgOverlay"
  6.          xmlns:html="http://www.w3.org/1999/xhtml"
  7.          xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  8.  
  9.   <!-- Overlay stuff needed in the Main Window -->
  10.   <script>
  11.   <![CDATA[
  12.     function cmdCancelSignOn()
  13.     {
  14.       aimSessionLogoff();
  15.     }
  16.   ]]>
  17.   </script>
  18.  
  19.   <!-- Overlay the Connecting Panel (Displayed when Connecting) -->
  20.   <box id="ConnectingOrg" flex="1" orient="vertical">
  21.     <!--  Heading for the top of the panel -->
  22.     <box class="aim-logo-box"><image class="aim-logo"/></box>
  23.  
  24.     <box flex="1" orient="vertical" autostretch="never" valign="middle" align="center">
  25.       <text class="label" id="btnSignOnProgress" disabled="false"/>
  26.       <separator/>
  27.       <progressmeter id="spconnectingprogressbar001" mode="normal" value="20"  />
  28.       <separator/>
  29.       <box>
  30.         <spring flex="1"/>
  31.         <button value="&cancel.label;" id="btnSignOnCancel" class="push" oncommand="cmdCancelSignOn();"/>
  32.         <spring flex="1"/>
  33.       </box>
  34.     </box>
  35.   </box>
  36.   
  37. </overlay>
  38.